home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / myvcs / myvcsinf.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  481b  |  33 lines

  1. unit Myvcsinf;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons;
  8.  
  9. type
  10.   TMyVCSInfo = class(TForm)
  11.     UnitListBox: TListBox;
  12.     FormListBox: TListBox;
  13.     Label2: TLabel;
  14.     Label1: TLabel;
  15.     Label3: TLabel;
  16.     Edit1: TEdit;
  17.     BitBtn1: TBitBtn;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   MyVCSInfo: TMyVCSInfo;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31.  
  32. end.
  33.